home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / m / tek4300.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-04  |  2.8 KB  |  92 lines

  1. /* machine description file for tek4300.
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* Synched up with: FSF 19.29. */
  21.  
  22. /* The following line tells the configuration script what sort of 
  23.    operating system this machine is likely to run.
  24.    USUAL-OPSYS="bsd4-3"  */
  25.  
  26. /* Define WORD_MACHINE if addresses and such have
  27.  * to be corrected before they can be used as byte counts.  */
  28.  
  29. #undef WORD_MACHINE
  30.  
  31. /* Now define a symbol for the cpu type, if your compiler
  32.    does not define it automatically.  */
  33.  
  34. #ifndef tek4300
  35. #define tek4300
  36. #endif
  37.  
  38. /* Use type int rather than a union, to represent Lisp_Object */
  39.  
  40. #define NO_UNION_TYPE
  41.  
  42. /* Data type of load average, as read out of kmem.  */
  43.  
  44. #define LOAD_AVE_TYPE long
  45.  
  46. /* Convert that into an integer that is 100 for a load average of 1.0  */
  47.  
  48. #define LOAD_AVE_CVT(x) (x)
  49.  
  50. /* Define NO_REMAP if memory segmentation makes it not work well
  51.    to change the boundary between the text section and data section
  52.    when Emacs is dumped.  If you define this, the preloaded Lisp
  53.    code will not be sharable; but that's better than failing completely.  */
  54.  
  55. #define NO_REMAP
  56.  
  57. /* Define C_ALLOCA if this machine does not support a true alloca
  58.    and the one written in C should be used instead. */
  59.  
  60. #define C_ALLOCA
  61.  
  62. /* The text segment always starts at a fixed address.
  63.    This way we don't need to have a label _start defined.  */
  64.  
  65. #define TEXT_START 0
  66.  
  67. /* The Tektronix exec struct for ZMAGIC files is struct zexec */
  68.  
  69. #define EXEC_HDR_TYPE struct zexec
  70.  
  71. /* The entry-point label (start of text segment) is `start', not `__start'.  */
  72.  
  73. #define DEFAULT_ENTRY_ADDRESS start
  74.  
  75. /* Use the system's malloc calls, gmalloc.c won't work for us. */
  76.  
  77. #define SYSTEM_MALLOC
  78.  
  79. /* In building xmakefile, "cc -E -g" forcibly reads from stdin.  Since we
  80.    can't remove the CFLAGS from that "cc -E" invocation, make sure we
  81.    never pass -g.  If you want to debug, remove the following, and fix
  82.    src/Makefile.in so it doesn't pass ${CFLAGS} when creating xmakefile. */
  83.  
  84. #define C_DEBUG_SWITCH
  85.  
  86. /* eirik@elf.ithaca.ny.us said this was needed in 19.22.  */
  87. #define NO_MODE_T
  88.  
  89. /* Formerly "BSD_PGRPS" */
  90.  
  91. #define SIGIO_REQUIRES_SEPARATE_PROCESS_GROUP
  92.